Using Genetic Data to Find Kin Pairs

Eric C. Anderson

The Wildlife Society CKMR Workshop, Sunday November 6, 2022

A First Slide in Quarto

What is up! I am just going to drone on and on here to see how far this text wraps in different contexts. Whoa! Is this long enough yet?

\[ \int_0^1 x^{\alpha - 1}(1-x)^{\beta-1}dx \]

Quarto

Quarto enables you to weave together content and executable code into a finished presentation. To learn more about Quarto presentations see https://quarto.org/docs/presentations/.

This image got inserted by pasting!

Code

When you click the Render button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:

x <- 1:10
y <- x^2

x
 [1]  1  2  3  4  5  6  7  8  9 10
y
 [1]   1   4   9  16  25  36  49  64  81 100
plot(x,y)